home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
LOTTORTS
/
BOWLLEAG.LZH
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-02-01
|
968b
|
47 lines
echo off
cls
if not exist bowl101.exe goto :errordrive
echo The Bowl101! Install Procedure copies all program
echo files onto your hard drive in a directory called
echo BOWL.
echo INSTALL followed by the drive specification.
echo Example.....
echo.
echo A: Log to the drive containing BOWL101
echo.
echo.
echo INSTALL C:
echo.
echo.
echo Installs Bowl101! onto drive C:\BOWL
echo.
echo Press Ctrl-Break if you wish to exit and start again or...
if "%1"=="" goto error
pause
set d=c:
set d=%1%
:Copyall
MD %d%\bowl
echo -1>%d%test101.101
if not exist %d%test101.101 goto :error
del %d%test101.101
copy *.* %d%\bowl
cls
CD %d%\bowl
%1
echo ***************************
echo * Installation Complete *
echo ***************************
goto end
:errordrive
echo
echo.
echo Please Log to drive containing Bowl101 and try again.
echo.
goto end
:error
echo
echo.
echo Please specify drive to install Bowl101 on.
:end